Skip to content

chore(deps): bump the github-actions group with 5 updates#60

Merged
alxxjohn merged 1 commit into
mainfrom
dependabot/github_actions/github-actions-05f598132f
Jul 23, 2026
Merged

chore(deps): bump the github-actions group with 5 updates#60
alxxjohn merged 1 commit into
mainfrom
dependabot/github_actions/github-actions-05f598132f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 23, 2026

Copy link
Copy Markdown
Contributor

Bumps the github-actions group with 5 updates:

Package From To
actions/checkout 7.0.0 7.0.1
actions/setup-python 6.3.0 7.0.0
pypa/gh-action-pypi-publish 1.14.0 1.14.1
devr-tools/codeguard 1.1.1 1.2.0
Homebrew/actions/setup-homebrew 100978dc923ea73ee9ed454d1d5c4fcf3ee14a9e df4b09108a1de9d6f995fe68f302b3f68bd6d2ef

Updates actions/checkout from 7.0.0 to 7.0.1

Release notes

Sourced from actions/checkout's releases.

v7.0.1

What's Changed

Full Changelog: actions/checkout@v7...v7.0.1

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.1

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

Updates actions/setup-python from 6.3.0 to 7.0.0

Release notes

Sourced from actions/setup-python's releases.

v7.0.0

What's Changed

Enhancements

Bug Fix

Dependency Upgrade

New Contributors

Full Changelog: actions/setup-python@v6...v7.0.0

Commits

Updates pypa/gh-action-pypi-publish from 1.14.0 to 1.14.1

Release notes

Sourced from pypa/gh-action-pypi-publish's releases.

v1.14.1

🛠️ Internal Dependencies

@​adisivaprasad💰 helped get rid of the GitHub Actions runner warning about the old Node 20 runtime being used by updating actions/setup-python from v5.6.0 to v6.2.0 in #408.

💪 New Contributors

🪞 Full Diff: pypa/gh-action-pypi-publish@v1.14.0...v1.14.1

🧔‍♂️ Release Manager: @​webknjaz 🇺🇦

🙏 Special Thanks to @​jylenhof💰 for reminding me to work on this release!

GH Sponsors badge

Commits
  • ba38be9 Merge pull request #408 from adisivaprasad/bump-setup-python-v6
  • a6c5088 Bump actions/setup-python from v5.6.0 to v6.2.0
  • See full diff in compare view

Updates devr-tools/codeguard from 1.1.1 to 1.2.0

Release notes

Sourced from devr-tools/codeguard's releases.

v1.2.0

1.2.0 (2026-07-21)

Features

  • add agent-native repository guardrails (86f7142)

v1.1.2

1.1.2 (2026-07-17)

Bug Fixes

  • (checks) design-cross-language-boundaries (#55) (91afc88)
  • design: add configurable architecture boundaries (f6bdb33)
  • design: add configurable architecture boundaries (#53) (ea5cd93)
  • design: satisfy strict lint (f8c6471)
Changelog

Sourced from devr-tools/codeguard's changelog.

1.2.0 (2026-07-21)

Features

  • add agent-native repository guardrails (86f7142)

1.1.2 (2026-07-17)

Bug Fixes

  • (checks) design-cross-language-boundaries (#55) (91afc88)
  • design: add configurable architecture boundaries (f6bdb33)
  • design: add configurable architecture boundaries (#53) (ea5cd93)
  • design: satisfy strict lint (f8c6471)
Commits
  • a1f8eb3 chore(main): release 1.2.0 (#58)
  • dc81ba1 Merge branch 'main' into release-please--branches--main--components--codeguard
  • 9499b5c test: format TypeScript taint coverage (#59)
  • 78155a3 ci: allow internal package tests
  • 42bbc6d ci: satisfy strict lint checks
  • f5083a3 test: format TypeScript taint coverage
  • 3062523 chore(main): release 1.2.0
  • 86f7142 feat: add agent-native repository guardrails
  • 13d9a38 chore(main): release 1.1.2 (#54)
  • 15bb085 Merge branch 'main' into release-please--branches--main--components--codeguard
  • Additional commits viewable in compare view

Updates Homebrew/actions/setup-homebrew from 100978dc923ea73ee9ed454d1d5c4fcf3ee14a9e to df4b09108a1de9d6f995fe68f302b3f68bd6d2ef

Changelog

Sourced from Homebrew/actions/setup-homebrew's changelog.

import assert from "node:assert/strict"; import { execFileSync, spawnSync } from "node:child_process"; import { appendFileSync, mkdtempSync, readFileSync, rmSync, writeFileSync, } from "node:fs"; import { tmpdir } from "node:os"; import { join } from "node:path"; import { fileURLToPath } from "node:url"; import test from "node:test"; import * as yaml from "js-yaml";

type ActionStep = { uses?: string; };

type ActionMetadata = { runs?: { steps?: ActionStep[]; }; };

const REPOSITORY_ROOT = fileURLToPath(new URL(".", import.meta.url)); const PREPARE_RELEASE = fileURLToPath( new URL("./.github/scripts/prepare-release.sh", import.meta.url), );

function git(repository: string, ...arguments_: string[]): string { return execFileSync("git", ["-C", repository, ...arguments_], { encoding: "utf8", }).trim(); }

function repository(): string { const path = mkdtempSync(join(tmpdir(), "homebrew-actions-release-")); git(path, "init", "--initial-branch=main"); git(path, "config", "user.email", "test@example.com"); git(path, "config", "user.name", "Release Test"); git(path, "config", "commit.gpgsign", "false"); git(path, "config", "tag.gpgsign", "false"); return path; }

function commit(repository: string, message: string, date: string): string { appendFileSync(join(repository, "state.txt"), ${message}\n); git(repository, "add", "state.txt"); execFileSync("git", ["-C", repository, "commit", "-m", message], {

... (truncated)

Commits
  • df4b091 Merge pull request #890 from Homebrew/dependabot/npm_and_yarn/npm-a881ffbc87
  • 6270424 Merge pull request #891 from Homebrew/dependabot/github_actions/github-action...
  • a291414 build(deps): bump the github-actions group across 5 directories with 7 updates
  • 9aa9f6a build(deps-dev): bump the npm group with 2 updates
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the github-actions group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `7.0.0` | `7.0.1` |
| [actions/setup-python](https://github.com/actions/setup-python) | `6.3.0` | `7.0.0` |
| [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.14.0` | `1.14.1` |
| [devr-tools/codeguard](https://github.com/devr-tools/codeguard) | `1.1.1` | `1.2.0` |
| [Homebrew/actions/setup-homebrew](https://github.com/homebrew/actions) | `100978dc923ea73ee9ed454d1d5c4fcf3ee14a9e` | `df4b09108a1de9d6f995fe68f302b3f68bd6d2ef` |


Updates `actions/checkout` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@9c091bb...3d3c42e)

Updates `actions/setup-python` from 6.3.0 to 7.0.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@ece7cb0...5fda3b9)

Updates `pypa/gh-action-pypi-publish` from 1.14.0 to 1.14.1
- [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases)
- [Commits](pypa/gh-action-pypi-publish@cef2210...ba38be9)

Updates `devr-tools/codeguard` from 1.1.1 to 1.2.0
- [Release notes](https://github.com/devr-tools/codeguard/releases)
- [Changelog](https://github.com/devr-tools/codeguard/blob/main/CHANGELOG.md)
- [Commits](v1.1.1...v1.2.0)

Updates `Homebrew/actions/setup-homebrew` from 100978dc923ea73ee9ed454d1d5c4fcf3ee14a9e to df4b09108a1de9d6f995fe68f302b3f68bd6d2ef
- [Release notes](https://github.com/homebrew/actions/releases)
- [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts)
- [Commits](Homebrew/actions@100978d...df4b091)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: actions/setup-python
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: pypa/gh-action-pypi-publish
  dependency-version: 1.14.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: devr-tools/codeguard
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: Homebrew/actions/setup-homebrew
  dependency-version: df4b09108a1de9d6f995fe68f302b3f68bd6d2ef
  dependency-type: direct:production
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jul 23, 2026
@dependabot
dependabot Bot requested a review from alxxjohn as a code owner July 23, 2026 06:57
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jul 23, 2026
@alxxjohn
alxxjohn merged commit 94b881f into main Jul 23, 2026
11 checks passed
@alxxjohn
alxxjohn deleted the dependabot/github_actions/github-actions-05f598132f branch July 23, 2026 23:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant